home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet multimedia / Animacje, filmy i prezentacje / Modelowanie 3D / K-3D 0.6.5.0 / k3d-all-in-one-setup-0.6.5.0.exe / aqsis-setup-1.1.0-2006-12-09.exe / include / aqsis / shadeop.h < prev    next >
Encoding:
C/C++ Source or Header  |  2006-06-14  |  2.4 KB  |  81 lines

  1. // Aqsis
  2. // Copyright ⌐ 1997 - 2001, Paul C. Gregory
  3. //
  4. // Contact: pgregory@aqsis.org
  5. //
  6. // This library is free software; you can redistribute it and/or
  7. // modify it under the terms of the GNU General Public
  8. // License as published by the Free Software Foundation; either
  9. // version 2 of the License, or (at your option) any later version.
  10. //
  11. // This library is distributed in the hope that it will be useful,
  12. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  14. // General Public License for more details.
  15. //
  16. // You should have received a copy of the GNU General Public
  17. // License along with this library; if not, write to the Free Software
  18. // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  19.  
  20.  
  21. /** \file
  22.                   \brief Utility macros for creating Dynamic Shader Operations for Aqsis
  23.                           \author Tristan Colgate <tristan@inuxtech.co.uk>
  24.                   */
  25.  
  26. /** Renderman Interface is Copyright (c) 1988 Pixar. All Rights reserved.*/
  27.  
  28. #ifndef SHADEOP_H
  29. #define SHADEOP_H
  30.  
  31.  
  32. #ifdef WIN32
  33. #define EXPORT __declspec(dllexport)
  34. #else
  35. #define EXPORT
  36. #endif
  37.  
  38. #ifdef __cplusplus
  39. #define EXTERN_C extern "C"
  40. #else
  41. #define EXTERN_C
  42. #endif
  43.  
  44. struct SqShadeOp
  45. {
  46.     char *m_opspec;
  47.     char *m_init;
  48.     char *m_shutdown;
  49. } ;
  50.  
  51. typedef struct _STRING_DESC
  52. {
  53.     char *s;
  54.     int bufflen;
  55. }
  56. STRING_DESC;
  57.  
  58. // Some of the DSO's out there seem to use this
  59. #define SHADEOP_SPEC struct SqShadeOp
  60.  
  61. // Utility macro for declaring a table of shader operations
  62. #define SHADEOP_TABLE(opname) struct SqShadeOp EXPORT  opname ## _shadeops []
  63.  
  64. // Utility macro for declaring a shadeop method
  65. #define SHADEOP(method) EXTERN_C EXPORT int method (void *initdata, int argc, void **argv)
  66.  
  67. // Utility macro for declaring a shadeop initilaisation function
  68. #define SHADEOP_INIT(initfunc) EXTERN_C EXPORT void* initfunc (int ctx, void *texturectx)
  69.  
  70. // Utility macro for declaring a shadeop shutdown function
  71. #define SHADEOP_SHUTDOWN(shutdownfunc) EXTERN_C EXPORT void shutdownfunc (void *initdata)
  72. // alternative name for the above seen in bbox.c in the RMR
  73. #define SHADEOP_CLEANUP(shutdownfunc) EXTERN_C EXPORT void shutdownfunc (void *initdata)
  74.  
  75. // We declare these here for access from shaderexecenv
  76. typedef void (*DSOMethod)(void*,int,void**);
  77. typedef void* (*DSOInit)(int,void*);
  78. typedef void (*DSOShutdown)(void*);
  79.  
  80. #endif // SHADEOP_H
  81.